home *** CD-ROM | disk | FTP | other *** search
/ Super Audio / Super Audio.iso / replay / _armovie / decomp803 / readme < prev   
Text File  |  1997-11-10  |  2KB  |  72 lines

  1.  
  2.  FLI/AVI/QuickTime compressed
  3.  ============================
  4.  
  5.  This is a Replay decompressor which will decompress various FLI, AVI and
  6. QuickTime formats after they have been converted to Replay.
  7.  
  8.  The first short word (16 bits) in a frame is the compression type, the
  9. next word (32 bits) is the total size of the data for the frame. This allows
  10. the decompressor to skip unknown compression formats.
  11.  
  12.  
  13.  
  14.  Currently supported is:
  15.  
  16.         Format                  Compression type
  17.         AVI RGB (8 bit)         0
  18.         AVI CRAM (8 bit)        8
  19.         AVI CRAM (16 bit)       16
  20.         FLI/FLC (8 bit)         128
  21.         Dummy frame             255
  22.         QuickTime RAW (8 bit)   0       (as AVI RGB)
  23.         QuickTime RLE (8 bit)   256
  24.         QuickTime RLE (16 bit)  260
  25.         QuickTime RPZA (16 bit) 264
  26.  
  27.  
  28.  AVI
  29.  ---
  30.  CRAM 8: The first 256 short words hold the palette. The follows the
  31.       compressed data, copied directly from the AVI file.
  32.  
  33.  CRAM 16: The encoded data is copied directly from the AVI file.
  34.       This compression format has NOT been tested yet.
  35.  
  36.  RGB 8: The first 256 short words hold the palette for the frame. Then
  37.       follows the pixels, 8 bits each.
  38.  
  39.  
  40.  QuickTime
  41.  ---------
  42.  RLE 8: First comes 256 short words with the palette, then follows
  43.       the compressed data.
  44.  
  45.  RLE 16: The encoded data is copied directly from the QuickTime file.
  46.       This compression format has NOT been tested yet.
  47.  
  48.  RAW 8: This is identical to RGB 8 for AVI.
  49.  
  50.  RPZA 16: The encoded data is copied directly from the QuickTime file.
  51.       Doesn't work with all files.
  52.  
  53.  
  54.  FLI/FLC
  55.  -------
  56.  The Replay frame is simply the compressed data for the FLI frame.
  57.  
  58.  
  59.  --------------------------------------------------------------------------
  60.  Notice:  Sometimes some files cannot be played by the usual Replay players,
  61.          although they can be decompressed and read by CineWorks.
  62.  
  63.           Most of the code is written without any kind of speed-optimization,
  64.          so you may not be able to playback large movies in realtime.
  65.          Especially the QuickTime formats are very slow, as all colours are
  66.          in bgr format, rather than in rgb as used by Acorn, so all colours
  67.          have to be 'reversed'. Also, QuickTime files cannot be read word by
  68.          word, but must be read byte by byte, which further slows down the
  69.          decoding.
  70.  
  71.           A frame should always use an even number of bytes.
  72.